home *** CD-ROM | disk | FTP | other *** search
/ PC Graphics Unleashed / PC Graphics Unleashed.iso / ch20 / install.bat next >
Encoding:
DOS Batch File  |  1994-10-10  |  2.0 KB  |  57 lines

  1. @ECHO OFF
  2. REM %1=DRIVE
  3. REM -----------------------------
  4. ECHO  
  5. ECHO ╔═════════════════════════════════════════════════════╗
  6. ECHO ║                                                     ║
  7. ECHO ║ PC Graphics Unleashed                               ║
  8. ECHO ║                                                     ║
  9. ECHO ║ CD-ROM Installation Program                         ║
  10. ECHO ║                                                     ║
  11. ECHO ╚═════════════════════════════════════════════════════╝
  12. ECHO  
  13. ECHO  
  14. ECHO ─────────────────────────────────────────────────────────────
  15. ECHO   The files for Chapter 20 will be installed to your %1
  16. ECHO   hard drive. You need at least 1 megabyte of free space.
  17. ECHO.
  18. ECHO.
  19. ECHO   If this is NOT what you want to do, press the Ctrl + C 
  20. ECHO   keys to stop this batch program.
  21. ECHO ─────────────────────────────────────────────────────────────
  22. ECHO  
  23. ECHO  
  24. ECHO  
  25. PAUSE Paused... press any key to continue the installation
  26. CLS
  27. ECHO  
  28. ECHO ┌───────────────────────────────────────────────────────────────────────┐
  29. ECHO │ The software will now be installed to your %1 hard drive.             │
  30. ECHO │ You'll see a message telling you when the installation is finished.   │
  31. ECHO └───────────────────────────────────────────────────────────────────────┘
  32. IF EXIST C:\PCGU\nul GOTO COPYING
  33. MD C:\PCGU
  34. :COPYING
  35. MD C:\PCGU\CH20
  36. MD C:\PCGU\CH20\EXE
  37. MD C:\PCGU\CH20\SOURCE
  38. XCOPY \CH20\EXE %1\PCGU\CH20\EXE\ /S /E
  39. XCOPY \CH20\SOURCE %1\PCGU\CH20\SOURCE\ /S /E
  40. COPY \CH20\README.TXT %1\PCGU\CH20
  41. CLS
  42. ECHO 
  43. ECHO  
  44. ECHO ═════════════════════════════════════════════════════════════════════
  45. ECHO.
  46. ECHO   The installation of the Chapter 20 software is complete.
  47. ECHO   You'll find the files in the %1\PCGU\CH20 directory. 
  48. ECHO.
  49. ECHO   The CT scan and MRI scan data files have not been installed 
  50. ECHO   to your hard drive. You'll find them in the \CH20\DATA directory.
  51. ECHO.
  52. ECHO ═════════════════════════════════════════════════════════════════════
  53. ECHO  
  54. ECHO  
  55. pause
  56. cls
  57.